8

2024-7-30

现在都用day.js了

npm install dayjs -S

=============================================
旧文

本文主要是写给新手的,我自己也是一个新手。大牛请忽略~如果有错误请指出
最近在写Vue的项目中遇到了时间转换的问题,所以就开始找资料。
发现可以使用Vue的过滤器(filter)来处理
处理时间的业界牛逼类库 moment.js
下面来说一下用法
第一步:安装

npm install moment --save 

第二步:在main.js中引用

import moment from 'moment/moment'

第三步:在main.js中添加过滤器

Vue.filter('moment', function (value, formatString) {
    formatString = formatString || 'YYYY-MM-DD HH:mm:ss';
    // return moment(value).format(formatString); 
    return moment.unix(value).format(formatString); // 这是时间戳转时间
});

/* eslint-disable no-new */
new Vue({
  el: '#app',
  template: '<App/>',
  components: { App }
})

第四步: 在vue页面中使用过滤器

<template>
  <div id="app">
      <div>
        {{ datetime | moment }}
      </div>
  </div>
</template>

<script>
export default {
  name: 'app',
  data () {
    return {
      datetime: '1500799859'
    }
  }
}
</script>

第五步: 结果

2017-07-23 16:50:59

原谅我一生不羁放歌搞文艺
383 声望12 粉丝

你就是很有想法。


下一篇 »
Vue2 导出excel